home *** CD-ROM | disk | FTP | other *** search
/ Pro One: Netcracker Netscape Navigator / ProOne: Netcracker Netscape Navigator.iso / pc / nc / faq / faq_gofr.geo / 00021.ls < prev    next >
Encoding:
Text File  |  1997-03-19  |  678 b   |  30 lines

  1. on switchButt spriteNum, castDown, macroName
  2.   set flag to 0
  3.   set SaveCast to the castNum of sprite spriteNum
  4.   set flag to swapCast(spriteNum, SaveCast, castDown)
  5.   repeat while the stillDown
  6.     set flag to swapCast(spriteNum, SaveCast, castDown)
  7.   end repeat
  8.   if flag = 1 then
  9.     do(macroName)
  10.   end if
  11. end
  12.  
  13. on swapCast spriteNum, SaveCast, castDown
  14.   if rollOver(spriteNum) then
  15.     set the castNum of sprite spriteNum to the number of cast castDown
  16.     updateStage()
  17.     return 1
  18.   else
  19.     set the castNum of sprite spriteNum to the number of cast SaveCast
  20.     updateStage()
  21.     return 0
  22.   end if
  23. end
  24.  
  25. on handleExit
  26.   tell the stage
  27.     closeFAQwindow()
  28.   end tell
  29. end
  30.